home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1997 June / Designer's Club 1997 June.iso / pc / ideasrc / demo3.dir / 00025.ls < prev    next >
Encoding:
Text File  |  1997-05-13  |  309 b   |  17 lines

  1. on mouseDown
  2.   puppetSound("tock")
  3.   repeat while the mouseDown
  4.     set the visible of sprite 2 to 0
  5.     updateStage()
  6.   end repeat
  7.   puppetSound("tick")
  8.   set the visible of sprite 2 to 1
  9.   if the frame = the lastFrame then
  10.     go("demo6")
  11.   else
  12.     sound stop 1
  13.     sound stop 2
  14.     go(#next)
  15.   end if
  16. end
  17.